home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / ptrp25dm.zip / TEST5.TRP < prev    next >
Text File  |  1995-01-17  |  229b  |  12 lines

  1. procedure main
  2.         local 
  3.                 v : integer;
  4.         endvar
  5.         v := 15;
  6.         if (v > 5)
  7.                 writeln("Bigger than 5")
  8.         else
  9.                 writeln("<= 5")
  10.         endif
  11. endproc
  12.